GET Practice
Make a GET request to /api/users
. What is the flag?
- URL : https://tryhackme.com/api/users
- Request Header :
GET api/users HTTP/1.1
Host: tryhackme.com
User-Agent: Mozilla/5.0 Firefox/87.0
Content-Length: 0
- Response Header :
HTTP/1.1 200 Ok
Server: nginx/1.15.8
Fri, 22 Nov 2024 3 38 21 GMT
Content-Type: text/html; charset=utf-8
Content-Length: 633
Last-Modified: Fri, 22 Nov 2024 3 38 21 GMT
- Response Body :
<html>
<head>
<title>TryHackMe</title>
</head>
<body>
<table class="table-auto"><thead><tr class="bg-gray text-white"><th class="w-20">Name</th><th class="w-20">Age</th><th class="w-20">Country</th><th>Flag</th></tr></thead><tbody><tr><td class="text-center">Alice</td><td class="text-center">28</td><td class="text-center">US</td><td class="text-center"></td></tr><tr><td class="text-center">Bob</td><td class="text-center">34</td><td class="text-center">UK</td><td class="text-center"></td></tr><tr><td class="text-center">Charlie</td><td class="text-center">25</td><td class="text-center">CA</td><td class="text-center">THM{YOU_HAVE_JUST_FOUND_THE_USER_LIST}</td></tr></tbody></table>
</body>
</html>
- Browser Rendering :
Name | Age | Country | Flag |
---|---|---|---|
Alice | 28 | US | |
Bob | 34 | UK | |
Charlie | 25 | CA | THM{YOU_HAVE_JUST_FOUND_THE_USER_LIST} |